type net/http.http2Setting

17 uses

	net/http (current package)
		h2_bundle.go#L2378: func (f *http2SettingsFrame) Setting(i int) http2Setting {
		h2_bundle.go#L2380: 	return http2Setting{
		h2_bundle.go#L2421: func (f *http2SettingsFrame) ForeachSetting(fn func(http2Setting) error) error {
		h2_bundle.go#L2436: func (f *http2Framer) WriteSettings(settings ...http2Setting) error {
		h2_bundle.go#L3284: 		f.ForeachSetting(func(s http2Setting) error {
		h2_bundle.go#L3573: type http2Setting struct {
		h2_bundle.go#L3582: func (s http2Setting) String() string {
		h2_bundle.go#L3587: func (s http2Setting) Valid() error {
		h2_bundle.go#L4924: 		settings = append(settings, http2Setting{http2SettingEnableConnectProtocol, 1})
		h2_bundle.go#L5770: func (sc *http2serverConn) processSetting(s http2Setting) error {
		h2_bundle.go#L8143: 	initialSettings := []http2Setting{
		h2_bundle.go#L8147: 	initialSettings = append(initialSettings, http2Setting{ID: http2SettingMaxFrameSize, Val: conf.MaxReadFrameSize})
		h2_bundle.go#L8149: 		initialSettings = append(initialSettings, http2Setting{ID: http2SettingMaxHeaderListSize, Val: max})
		h2_bundle.go#L8152: 		initialSettings = append(initialSettings, http2Setting{ID: http2SettingHeaderTableSize, Val: maxHeaderTableSize})
		h2_bundle.go#L10154: 	err := f.ForeachSetting(func(s http2Setting) error {
		h2_bundle.go#L10813: type http2writeSettings []http2Setting
		h2_bundle.go#L10822: 	return ctx.Framer().WriteSettings([]http2Setting(s)...)